home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1997
/
MacHack 1997.toast
/
Hacks
/
Hacks ’97
/
Warrior’s Progress
/
source code
/
Source
/
Libraries
/
Windows
/
WindowUpdater.h
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-06-28
|
315 b
|
25 lines
|
[
TEXT/CWIE
]
// WindowUpdater.h
#ifndef WindowUpdater_h
#define WindowUpdater_h
class WindowUpdater
{
private:
const WindowPtr window;
public:
WindowUpdater( WindowPtr theWindow )
: window( theWindow )
{
BeginUpdate( window );
}
~WindowUpdater()
{
EndUpdate( window );
}
};
#endif